home *** CD-ROM | disk | FTP | other *** search
- @Echo Off
- :Again
- Cls
- Type DEMO.DAT
- GETFKEY
- If Errorlevel 69 Goto Again
- If Errorlevel 68 Goto F10
- If Errorlevel 67 Goto F9
- If Errorlevel 66 Goto F8
- If Errorlevel 65 Goto F7
- If Errorlevel 64 Goto F6
- If Errorlevel 63 Goto F5
- If Errorlevel 62 Goto F4
- If Errorlevel 61 Goto F3
- If Errorlevel 60 Goto F2
- If Errorlevel 59 Goto F1
- If Errorlevel 58 Goto Again
- :F1
- Cls
- Echo This is F1
- Echo You have initiated a command to FORMAT
- Pause
- Goto Again
- :F2
- Cls
- Echo This is F2
- Echo You have initiated a command to FORMAT
- Pause
- Goto Again
- :F3
- Cls
- Echo This is F3
- Echo You have initiated a command to FORMAT
- Pause
- Goto Again
- :F4
- Cls
- Echo This is F4
- Echo You have initiated a command to FORMAT
- Pause
- Goto Again
- :F5
- Cls
- Echo This is F5
- Echo You have initiated a command to FORMAT
- Pause
- Goto Again
- :F6
- Cls
- Echo This is F6
- Echo You have initiated a command to FORMAT
- Pause
- Goto Again
- :F7
- Cls
- Echo This is F7
- Echo You have initiated a command to DISKCOPY
- Pause
- Goto Again
- :F8
- Cls
- Echo This is F8
- Echo You have initiated a command to DISKCOPY
- Pause
- Goto Again
- :F9
- Cls
- Echo This is F9
- Echo You have become hungry doing this and have
- Echo initiated a command for Pizza!
- Pause
- Goto Again
- :F10
- Cls
- Echo THIS IS F10 and this is the END!!!
- Pause
- :END
-